github.com/klauspost/compress/zstd.bitWriter.bitContainer (field)
13 uses
github.com/klauspost/compress/zstd (current package)
bitwriter.go#L11: bitContainer uint64
bitwriter.go#L35: b.bitContainer |= uint64(value&bitMask16[bits&31]) << (b.nBits & 63)
bitwriter.go#L43: b.bitContainer |= uint64(value&bitMask32[bits&31]) << (b.nBits & 63)
bitwriter.go#L63: b.bitContainer |= uint64(value) << (b.nBits & 63)
bitwriter.go#L70: b.bitContainer |= uint64(value) << (b.nBits & 63)
bitwriter.go#L80: byte(b.bitContainer),
bitwriter.go#L81: byte(b.bitContainer>>8),
bitwriter.go#L82: byte(b.bitContainer>>16),
bitwriter.go#L83: byte(b.bitContainer>>24))
bitwriter.go#L85: b.bitContainer >>= 32
bitwriter.go#L92: b.out = append(b.out, byte(b.bitContainer>>(i*8)))
bitwriter.go#L95: b.bitContainer = 0
bitwriter.go#L109: b.bitContainer = 0
![]() |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |